projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ceee275
)
Add test for recent buffer-local-variables change
author
Glenn Morris
<rgm@gnu.org>
Mon, 18 May 2020 20:08:27 +0000
(13:08 -0700)
committer
Glenn Morris
<rgm@gnu.org>
Mon, 18 May 2020 20:08:27 +0000
(13:08 -0700)
* test/src/buffer-tests.el (buffer-tests-buffer-local-variables-undo):
New.
test/src/buffer-tests.el
patch
|
blob
|
history
diff --git
a/test/src/buffer-tests.el
b/test/src/buffer-tests.el
index 6e87cb94897c1f4bc2299414922ce7d6ca322481..6e9764625a97c0f96b88cae4ccb591191bc199fa 100644
(file)
--- a/
test/src/buffer-tests.el
+++ b/
test/src/buffer-tests.el
@@
-1327,4
+1327,10
@@
with parameters from the *Messages* buffer modification."
(set-buffer-multibyte t)
(buffer-string)))))))
+;; https://debbugs.gnu.org/33492
+(ert-deftest buffer-tests-buffer-local-variables-undo ()
+ "Test that `buffer-undo-list' appears in `buffer-local-variables'."
+ (with-temp-buffer
+ (should (assq 'buffer-undo-list (buffer-local-variables)))))
+
;;; buffer-tests.el ends here